home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 2410 / 2410.xpi / chrome / content / foxmarks-clobber.js < prev    next >
Text File  |  2010-01-28  |  742b  |  38 lines

  1. /* 
  2.  Copyright 2007 Foxmarks Inc.
  3.  
  4.  foxmarks-clobber.js: handles the UI for the Clobber dialog. 
  5.   
  6.  */
  7.  
  8. function onClobberLoad()
  9. {
  10.     window.arguments[0].okay = true;
  11.     
  12.     document.getElementById("lastset").setAttribute("value",
  13.         window.arguments[2]);
  14.     document.getElementById("currset").setAttribute("value",
  15.         window.arguments[1]);
  16.     return true;
  17. }
  18. function onClobberOK()
  19. {
  20.     window.arguments[0].okay = true;
  21.     return true;
  22. }
  23.  
  24. function onClobberCancel()
  25. {
  26.     window.arguments[0].okay = false;
  27.     return true;
  28. }
  29.  
  30. function onClobberHelp(url)
  31. {
  32.     window.openDialog("chrome://browser/content/browser.xul",
  33.         "_blank", "chrome,all,dialog=no", url);
  34.     return false;
  35. }
  36.  
  37.  
  38.